home *** CD-ROM | disk | FTP | other *** search
- /* */
- /* test_wait.rexx */
- /* */
- /* Test rexx_wait and memory */
- /* */
-
-
- address TERM
-
- rexx_memory_on /* Turn on memory mode */
- serial_send '"ATDT3600\n"'
- say 'Dialing...'
- rexx_delay 5 /* To avoid confusion between Transpac answer */
- /* and modem answer */
- rexx_wait 30 2
- say 'memory = ' memory
- serial_send '"1751111\n"'
- say 'Going in Calvacom...'
- rexx_wait 5 2
- say 'memory = ' memory
- serial_send '"eg19\n"'
- say 'Entering access code...'
- rexx_wait 5 2
- say 'memory = ' memory
- serial_send '"mot-de-passe\n"'
- say 'Entering password...'
- rexx_wait 5 2
- say 'memory = ' memory
- serial_send '"/q tout\n"'
- say 'Oh, I stop here'
-
-
-